core-ktx
Convenient Kotlin extensions
Usage
To depend on core-ktx you will need add the jitpack.io repository in the project build.gradle/settings.gradle file:
build.gradle
allprojects {
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
// ...
}
}
Content copied to clipboard
settings.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url "https://jitpack.io" }
// ...
}
}
Content copied to clipboard
And then add the anime_music dependency to your module's dependencies scope:
dependencies {
implementation 'com.github.hydra-app.tools:core-ktx:$current-version'
}
Content copied to clipboard